﻿body {
    color: #FFF44F; /* Cytrynowy */
    text-shadow: 2px 2px 4px #FF69B4; /* Cień tekstu */

}

.button {
    display: inline-block;
    background-color: #FF69B4;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

    .button:hover {
        background-color: #FF1493;
    }
/* Styl dla wyśrodkowania przycisku */
.call-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.button:hover {
    background-color: #FF1493; /* Zmiana koloru tła na ciemniejszy róż */
    transform: scale(1.05); /* Delikatne powiększenie przycisku */
}




/* Global styles for mobile */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive typography */
h1, h2, h3 {
    font-size: 2rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive buttons */
.button {
    display: inline-block;
    background-color: #FF69B4;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Center images within the .service sections */
.service img {
    width: 100px;
    height: auto;
}

/* Set text size and layout for mobile */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    /* Adjust heading sizes */
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Stack the services vertically for smaller screens */
    .service {
        display: block;
        margin-bottom: 30px;
        padding: 10px;
        border-radius: 10px;
        text-align: center;
    }

        .service img {
            margin: 0 auto 10px;
        }

        .service h3, .service p, .service ul {
            margin: 0;
        }

        /* Ensure text fits well */
        .service ul {
            padding-left: 0;
            list-style-type: none;
        }
}

/* Adjust footer image and quote for mobile */
.quote-wrapper {
    text-align: center;
}

    .quote-wrapper img {
        width: 100%;
        height: auto;
    }

/* Responsive image background in the footer */
.footer-background {
    background-size: cover;
    padding: 20px;
}

/* Fine-tune layout for very small screens */
@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Stack the call-to-action buttons vertically */
    .contact-button-wrapper {
        flex-direction: column;
        align-items: center;
    }

        .contact-button-wrapper .button {
            margin: 10px 0;
        }
}

/* Style dla mniejszych ekranów */
@media (max-width: 768px) {
    .service {
        display: flex;
        flex-direction: column;
        align-items: center; /* Wyśrodkowanie elementów wewnątrz kontenera */
        text-align: center;
    }

        .service img {
            width: 120px;
            margin-bottom: 10px;
            display: block; /* Upewniamy się, że obraz jest traktowany jako blok */
            margin-left: auto;
            margin-right: auto;
        }

        .service h3, .service p, .service ul {
            margin: 0;
        }
}
